Package com.vdek.agv.gen.schema_20250101
Enum SeitenlokalisationStp
- java.lang.Object
-
- java.lang.Enum<SeitenlokalisationStp>
-
- com.vdek.agv.gen.schema_20250101.SeitenlokalisationStp
-
- All Implemented Interfaces:
Serializable,Comparable<SeitenlokalisationStp>
public enum SeitenlokalisationStp extends Enum<SeitenlokalisationStp>
Verwendung z. B. bei ICD-10-GM oder OPSJava-Klasse für Seitenlokalisation_Stp.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="Seitenlokalisation_Stp"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="L"/> <enumeration value="R"/> <enumeration value="B"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SeitenlokalisationStpfromValue(String v)Stringvalue()static SeitenlokalisationStpvalueOf(String name)Returns the enum constant of this type with the specified name.static SeitenlokalisationStp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
L
public static final SeitenlokalisationStp L
linksseitig
-
R
public static final SeitenlokalisationStp R
rechtsseitig
-
B
public static final SeitenlokalisationStp B
beidseitig
-
-
Method Detail
-
values
public static SeitenlokalisationStp[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SeitenlokalisationStp c : SeitenlokalisationStp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SeitenlokalisationStp valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static SeitenlokalisationStp fromValue(String v)
-
-